summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--codec-cfg.c16
-rw-r--r--codec-cfg.h1
2 files changed, 17 insertions, 0 deletions
diff --git a/codec-cfg.c b/codec-cfg.c
index 28c40cba27..d63e95f63a 100644
--- a/codec-cfg.c
+++ b/codec-cfg.c
@@ -702,6 +702,7 @@ codecs_t* find_codec(unsigned int fourcc,unsigned int *fourccmap,
if (c->fourcc[j]==fourcc || c->driver==0) {
if (fourccmap)
*fourccmap = c->fourccmap[j];
+ c->flags|=CODECS_FLAG_SELECTED;
return c;
}
}
@@ -710,6 +711,21 @@ codecs_t* find_codec(unsigned int fourcc,unsigned int *fourccmap,
return NULL;
}
+void codecs_reset_selection(int audioflag){
+ int i;
+ codecs_t *c;
+ if (audioflag) {
+ i = nr_acodecs;
+ c = audio_codecs;
+ } else {
+ i = nr_vcodecs;
+ c = video_codecs;
+ }
+ if(i)
+ for (/* NOTHING */; i--; c++)
+ c->flags&=(~CODECS_FLAG_SELECTED);
+}
+
void list_codecs(int audioflag){
int i;
codecs_t *c;
diff --git a/codec-cfg.h b/codec-cfg.h
index 0469acba4d..7381a9e501 100644
--- a/codec-cfg.h
+++ b/codec-cfg.h
@@ -7,6 +7,7 @@
// Global flags:
#define CODECS_FLAG_SEEKABLE (1<<0)
+#define CODECS_FLAG_SELECTED (1<<15) /* for internal use */
// Outfmt flags:
#define CODECS_FLAG_FLIP (1<<0)